博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
从首页问答标题到问答详情页
阅读量:5079 次
发布时间:2019-06-12

本文共 1830 字,大约阅读时间需要 6 分钟。

1.主PY文件写视图函数,带id参数。 

@app.route('/detail/<question_id>')
def detail(question_id):
    quest = 
    return render_template('detail.html', ques = quest)
@app.route('/detail/
')def detail(question_id): quest=Question.query.filter(Question.id==question_id).first() return render_template('detail.html',ques=quest)

2.首页标题的标签做带参数的链接。

      {
{ url_for('detail',question_id = foo.id) }}

{% for foo in questions %}            
  • {
    { foo.author.username }}
    {
    { foo.title }}
    发布时间:{
    { foo.creat_time }}

    {

    { foo.detail }}

  • {
    % endfor %}

    3.在详情页将数据的显示在恰当的位置。 

    {
    { ques.title}}
    {
    { ques.id  }}{
    {  ques.creat_time }}
    {
    { ques.author.username }} 
    {
    { ques.detail }}

    {

    { ques.detail }}



    4.建立评论的对象关系映射:

    class Comment(db.Model):

        __tablename__='comment'

    class Comment(db.Model):    __tablename__='comment'    id=db.Column(db.Integer, primary_key=True, autoincrement=True)    author_id = db.Column(db.Integer,db.ForeignKey('user.id'))    question_id = db.Column(db.Integer,db.ForeignKey('question.id'))    creat_time = db.Column(db.DateTime, default=datetime.now)    detail=db.Column(db.Text,nullable=False)    question=db.relationship('Question',backref=db.backref('comments'))    author=db.relationship('User',backref=db.backref('comments'))

    转载于:https://www.cnblogs.com/lwn-blog/p/7992789.html

    你可能感兴趣的文章
    HTML列表,表格与媒体元素
    查看>>
    设计器 和后台代码的转换 快捷键
    查看>>
    STL容器之vector
    查看>>
    数据中心虚拟化技术
    查看>>
    复习文件操作
    查看>>
    SQL Server 使用作业设置定时任务之一(转载)
    查看>>
    第二阶段冲刺-01
    查看>>
    BZOJ1045 HAOI2008 糖果传递
    查看>>
    JavaScript 克隆数组
    查看>>
    eggs
    查看>>
    oracle 报错ORA-12514: TNS:listener does not currently know of service requested in connec
    查看>>
    python3 生成器与迭代器
    查看>>
    java编写提升性能的代码
    查看>>
    list 容器 排序函数.xml
    查看>>
    《Genesis-3D开源游戏引擎完整实例教程-跑酷游戏篇03:暂停游戏》
    查看>>
    CPU,寄存器,一缓二缓.... RAM ROM 外部存储器等简介
    查看>>
    windows下编译FreeSwitch
    查看>>
    git .gitignore 文件不起作用
    查看>>
    Alan Turing的纪录片观后感
    查看>>
    c#自定义控件中的事件处理
    查看>>